home *** CD-ROM | disk | FTP | other *** search
- Option Explicit
-
- Dim TestVar%
-
- Sub TestProc ()
- 'This is a comment, followed by a blank line
-
- TestVar = 1 'line end comment isn't included
- TestVar = 2 '(but space before it is in byte count)
- TestVar = 3
- TestVar = 4
- TestVar = 5
- TestVar = 6
- TestVar = 7
- TestVar = 8
- TestVar = 9
- TestVar = 10
-
- 'TestProc module shud be 14 lines and 190 bytes
- End Sub
-
-